home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr26 / netprog.zip / NETPROG.TAR / tftp / cmd.h < prev    next >
C/C++ Source or Header  |  1989-12-17  |  350b  |  16 lines

  1. /*
  2.  * Header file for user command processing functions.
  3.  */
  4.  
  5. #include    "defs.h"
  6.  
  7. extern char    temptoken[];    /* temporary token for anyone to use */
  8.  
  9. typedef struct Cmds {
  10.   char    *cmd_name;        /* actual command string */
  11.   int    (*cmd_func)();        /* pointer to function */
  12. } Cmds;
  13.  
  14. extern Cmds    commands[];
  15. extern int    ncmds;        /* number of elements in array */
  16.